home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Popular Request
/
By Popular Request (Arsenal Computer)(SysOptics Distribution System).ISO
/
amiga1
/
amy_ne10.lha
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-01-22
|
3KB
|
110 lines
# Makefile for ne under Amiga. The debug, superdebug and fast targets
# can be used in order to increase the debug information, or in order
# to get an optimized compilation, respectively.
CC = sc
LD = slink
LIBS = lib:aterminfonbr.lib lib:scnb.lib lib:scmnb.lib
OBJS = actions.o \
buffer.o \
clips.o \
cm.o \
command.o \
display.o \
edit.o \
errors.o \
exec.o \
hash.o \
help.o \
inputclass.o \
input.o \
keys.o \
menu.o \
names.o \
navigation.o \
ne.o \
prefs.o \
regex.o \
request.o \
search.o \
signals.o \
streams.o \
support.o \
term.o \
undo.o
std:
smake ne "LFLAGS=ND" "CFLAGS=DEFINE NODEBUG=1 PARMS=REG DEFINE __USE_SYSBASE=1 NOSTACKCHECK DATA=FAR ANSI NOVERSION"
debug:
smake ne "LFLAGS=ADDSYM" "CFLAGS=DEBUG LINE PARMS=REG DEFINE __USE_SYSBASE=1 NOSTACKCHECK DATA=FAR ANSI NOVERSION"
superdebug:
smake ne "LFLAGS=ADDSYM" "CFLAGS=DEBUG LINE DEFINE DEBUG=1 PARMS=REG DEFINE __USE_SYSBASE=1 NOSTACKCHECK DATA=FAR ANSI NOVERSION"
fast:
smake ne "LFLAGS=ND" "CFLAGS=OPTIMIZE DEFINE NODEBUG=1 PARMS=REG DEFINE __USE_SYSBASE=1 NOSTACKCHECK DATA=FAR ANSI NOVERSION"
ne: $(OBJS) $(LIBS)
$(LD) lib:c.o $(OBJS) TO ne LIB $(LIBS) $(LDFLAGS)
actions.o: actions.c ne.h keycodes.h names.h errors.h protos.h version.h
buffer.o: buffer.c ne.h keycodes.h names.h errors.h protos.h
clips.o: clips.c ne.h keycodes.h names.h errors.h protos.h
cm.o: cm.c keycodes.h names.h errors.h protos.h help.h
command.o: command.c keycodes.h names.h errors.h protos.h help.h
display.o: display.c ne.h keycodes.h names.h errors.h protos.h
edit.o: edit.c ne.h keycodes.h names.h errors.h protos.h
errors.o: errors.c errors.h
exec.o: exec.c ne.h keycodes.h names.h errors.h protos.h
help.o: help.c
hash.o: hash.c
input.o: input.c ne.h keycodes.h names.h errors.h protos.h
inputclass.o: inputclass.c ne.h keycodes.h names.h errors.h protos.h
keys.o: keys.c ne.h keycodes.h names.h errors.h protos.h
menu.o: menu.c ne.h keycodes.h names.h errors.h protos.h
navigation.o: navigation.c ne.h keycodes.h names.h errors.h protos.h
ne.o: ne.c ne.h keycodes.h names.h errors.h protos.h version.h regex.h
prefs.o: prefs.c ne.h keycodes.h names.h errors.h protos.h
regex.o: regex.c regex.h
$(CC) $(CFLAGS) DEFINE REGEX_MALLOC=1 $*
request.o: request.c ne.h keycodes.h names.h errors.h protos.h
search.o: search.c ne.h keycodes.h names.h errors.h protos.h regex.h
signals.o: signals.c ne.h keycodes.h names.h errors.h protos.h
streams.o: streams.c ne.h keycodes.h names.h errors.h protos.h
support.o: support.c ne.h keycodes.h names.h errors.h protos.h
term.o: term.c cm.h
undo.o: undo.c ne.h keycodes.h names.h errors.h protos.h